home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 1996 September
/
CHIP Eylül 1996.iso
/
utils
/
povray
/
povsrc.lzh
/
machine
/
ibmpc
/
djgcc
/
putdjc.bat
< prev
Wrap
DOS Batch File
|
1994-02-06
|
508b
|
21 lines
@echo off
rem
rem
if not "%1" == "" goto NotEmpty
echo This batch file copies all files for compiling POV-Ray with DJGCC
echo to a working directory you specify.
echo For example: "PUTDJC C:\POVWORK" copies files to the C:\POVWORK directory.
goto Done
:NotEmpty
if not exist %1\nul echo Directory %1 doesn't exist!
if not exist %1\nul goto Done
rem
rem
echo on
copy ibmgcc*.* %1
copy ..\ibm.c %1
copy ..\ibmconf.h %1\config.h
copy ..\..\..\source\*.c %1
copy ..\..\..\source\*.h %1
:done